home *** CD-ROM | disk | FTP | other *** search
/ USA Bestseller / USA BESTSELLER Vol 1-95 (Hepp-Computer)(1995).iso / e048 / filediv.doc < prev    next >
Text File  |  1993-12-24  |  1KB  |  32 lines

  1. FILEDIV                     January 1994            Jeff Prosise
  2. ----------------------------------------------------------------
  3. PURPOSE:        Divide large files into smaller files.
  4.  
  5. SYNTAX:         FILEDIV [filename.ext]
  6.  
  7. Remarks:        To use FileDivide, it asks you to insert the
  8.                 first disk and ress any key. Then it splits the
  9.                 file into pieces and prompts you to for additional
  10.                 disks as needed. Each diskette should be formatted
  11.                 and empty. When FileDivide is done, each floppy 
  12.                 disk will contain a file named O_FILE.nnn, where
  13.                 nnn is the disk number.
  14.  
  15.                 To reassemble the file at the destination, copy
  16.                 all the O_FILE.nnn files from the floppies to the
  17.                 hard disk and then recreate the original using
  18.                 DOS's COPY command to concatenate the parts. For
  19.                 example, to combine O_FILE.001, O_FILE.002, and
  20.                 O_FILE.003 into one file named BUDGET94.XLS, type:
  21.  
  22.                 COPY /B O_FILE.001 + O_FILE.002 + 
  23.                         O_FILE.003 BUDGET94.XLS
  24.  
  25.                 (Line above wrapped to fit page)
  26.  
  27.                 Be sure to include the /B switch.
  28.  
  29.                 Be sure to use the same capacity floppy disk for
  30.                 each of the splits as you use FileDivide.
  31.  
  32.